home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960425-19960715 / 000194_news@columbia.edu _Mon Jun 3 10:19:39 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id KAA03796 for <kermit.misc@watsun>; Mon, 3 Jun 1996 10:19:38 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id KAA28337 for kermit.misc@watsun; Mon, 3 Jun 1996 10:19:34 -0400 (EDT)
  4. Path: news.columbia.edu!not-for-mail
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: ^S
  8. Date: 3 Jun 1996 10:19:10 -0400
  9. Organization: Columbia University
  10. Lines: 46
  11. Message-ID: <4ous8u$3fs@watsun.cc.columbia.edu>
  12. References: <4ol0al$qvh@qvarsx.er.usgs.gov> <4olfm7$6ck@apakabar.cc.columbia.edu> <4otieq$bb4@news.ccit.arizona.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4otieq$bb4@news.ccit.arizona.edu>,
  16. Jae H Shin <jshin@aruba.ccit.arizona.edu> wrote:
  17. : set flow none causes loss of some characters..esspecially, scrolling
  18. : pine mailer or 'more' session.
  19. :
  20. Different connections use different flow control.  Use "set flow xon/xoff"
  21. or "set flow rts/cts" to talk to your UNIX host, but see below about how
  22. to talk to your data logger.
  23.  
  24. : so...i need xon/xoff flow, but i don't want to get ^S^Q on screen.
  25. : any other suggestions?
  26. If you tell Kermit to "set flow xon/xoff", then the operating system
  27. processes incoming Xon (Ctrl-Q) and Xoff (Ctrl-S) characters and you will
  28. never see them on the scren.  So if you see ^S^Q, it is most likely that
  29. the host (or some other box along the communication path) is sending
  30. the literal characters ^ and S or Q.
  31.  
  32. But...
  33.  
  34. : >: I'm using Kermit under the DGUX operating system to download data via
  35. : >: modem from electronic data loggers.  The particular data logger in
  36. : >: question uses ^S to initiate the download.  When I'm connected through a
  37. : >: standard xterm, this isn't a problem, however if I execute Kermit through
  38. : >: a telnet session or use the Expect scripting language to start a
  39. : >: subprocess, Kermit intercepts the ^S and hangs the terminal.
  40. : >: 
  41. : >: I realize that there must be some settings for the terminal type that are
  42. : >: causing this to happen, however after playing around with some of the stty
  43. : >: settings (eg. -ixon), I had no luck.  Is there a way to stop kermit from
  44. : >: doing this?
  45. : >: 
  46. : >Like it says in the manual, "Using C-Kermit", tell Kermit to "set flow 
  47. : >none".
  48. :
  49. You can't use Xon/Xoff for flow control and also expect to see incoming Xoff
  50. (Ctrl-S) characters as data on the same connection.  You must either "set
  51. flow none" (in which case you could lose characters) or (preferably, if it
  52. is available) use some other kind of flow control, such as RTS/CTS.
  53.  
  54. The fact that your data logger sends Ctrl-S to indicate the start of a 
  55. download is a pretty good indication that it does NOT use Xon/Xoff flow
  56. control, so I don't think "set flow none" should make any difference.
  57.  
  58. - Frank